infix (==), infix ≡

Documentation for infix (==), infix ≡ assembled from the following types:

language documentation Sets, bags, and mixes

From Sets, bags, and mixes

(Sets, bags, and mixes) infix (==), infix ≡

Returns True if $a and $b are identical, else False. More information, Wikipedia definition.

language documentation Operators

From Operators

(Operators) infix (==), infix ≡

multi sub infix:<(==)>($a,$b --> Bool:D)

Set equality operator

Returns True if $a and $b are identical.

say (123) (==) (132); # OUTPUT: «True␤» 
say (123) ≡ (124); # OUTPUT: «False␤»